home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
FinderGrok
/
Grok
/
Source
/
CBasicApp.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
783b
|
34 lines
// ===========================================================================
// CBasicApp.h ©1994-2000 Metrowerks Inc. All rights reserved.
// ===========================================================================
#ifndef _H_CBasicApp
#define _H_CBasicApp
#pragma once
#include <LApplication.h>
class CBasicApp : public LApplication {
public:
CBasicApp();
virtual ~CBasicApp();
virtual Boolean ObeyCommand(
CommandT inCommand,
void* ioParam = nil);
virtual void FindCommandStatus(
CommandT inCommand,
Boolean& outEnabled,
Boolean& outUsesMark,
UInt16& outMark,
Str255 outName);
protected:
virtual void StartUp();
void RegisterClasses();
};
#endif // _H_CBasicApp